53 Star 612 Fork 134

GVPKai / Qwerty-Learner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
Kai 提交于 2023-10-15 03:23 . feat: add donate card (#677)
import react from '@vitejs/plugin-react'
import { promises as fs } from 'fs'
import { getLastCommit } from 'git-last-commit'
import jotaiDebugLabel from 'jotai/babel/plugin-debug-label'
import jotaiReactRefresh from 'jotai/babel/plugin-react-refresh'
import path from 'node:path'
import { visualizer } from 'rollup-plugin-visualizer'
import Icons from 'unplugin-icons/vite'
import { defineConfig } from 'vite'
import type { PluginOption } from 'vite'
// https://vitejs.dev/config/
export default defineConfig(async ({ mode }) => {
const latestCommitHash = await new Promise<string>((resolve) => {
return getLastCommit((err, commit) => (err ? 'unknown' : resolve(commit.shortHash)))
})
return {
plugins: [
react({ babel: { plugins: [jotaiDebugLabel, jotaiReactRefresh] } }),
visualizer() as PluginOption,
Icons({
compiler: 'jsx',
jsx: 'react',
customCollections: {
'my-icons': {
xiaohongshu: () => fs.readFile('./src/assets/xiaohongshu.svg', 'utf-8'),
},
},
}),
],
build: {
minify: true,
outDir: 'build',
sourcemap: false,
},
esbuild: {
drop: mode === 'development' ? [] : ['console', 'debugger'],
},
define: {
REACT_APP_DEPLOY_ENV: JSON.stringify(process.env.REACT_APP_DEPLOY_ENV),
LATEST_COMMIT_HASH: JSON.stringify(latestCommitHash + (process.env.NODE_ENV === 'production' ? '' : ' (dev)')),
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
css: {
modules: {
localsConvention: 'camelCaseOnly',
},
},
}
})
TypeScript
1
https://gitee.com/KaiyiWing/qwerty-learner.git
git@gitee.com:KaiyiWing/qwerty-learner.git
KaiyiWing
qwerty-learner
Qwerty-Learner
master

搜索帮助